home *** CD-ROM | disk | FTP | other *** search
/ PCMania 46 / PCMania CD46_2.iso / pc / sonar94 / sonar94.dir / 00345.ls < prev    next >
Encoding:
Text File  |  1994-07-07  |  371 b   |  20 lines

  1. on startMovie
  2.   set the exitLock to 1
  3. end
  4.  
  5. on keyDown
  6.   global tecla
  7.   set tecla to the keyCode
  8.   checkExit()
  9. end
  10.  
  11. on checkExit
  12.   global tecla
  13.   if the commandDown and ((the key = ".") or (the key = "q")) and (the exitLock = 1) then
  14.     go("credits", "@::Primer.dir")
  15.   end if
  16.   if (tecla = 53) and (the exitLock = 1) then
  17.     go("credits", "@::Primer.dir")
  18.   end if
  19. end
  20.